Nevron .NET Vision
Nevron.GraphicsCore Namespace / NGeometry2D Class / Scale Method / Scale(NPointD[],Int32,Int32,Double,Double) Method
array of points
the index of the first point
the count of points to perform operation upon
X scale
Y scale


In This Topic
    Scale(NPointD[],Int32,Int32,Double,Double) Method
    In This Topic
    Scales a range of points from the specified array
    Syntax
    'Declaration
     
    
    Public Overloads Shared Sub Scale( _
       ByVal points() As NPointD, _
       ByVal start As System.Integer, _
       ByVal count As System.Integer, _
       ByVal scaleX As System.Double, _
       ByVal scaleY As System.Double _
    ) 
    'Usage
     
    
    Dim points() As NPointD
    Dim start As System.Integer
    Dim count As System.Integer
    Dim scaleX As System.Double
    Dim scaleY As System.Double
     
    NGeometry2D.Scale(points, start, count, scaleX, scaleY)
    public static void Scale( 
       NPointD[] points,
       System.int start,
       System.int count,
       System.double scaleX,
       System.double scaleY
    )

    Parameters

    points
    array of points
    start
    the index of the first point
    count
    the count of points to perform operation upon
    scaleX
    X scale
    scaleY
    Y scale
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also